home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig07_08.jar / Ch07 / Fig07_08 / Fig07_08.cpp next >
C/C++ Source or Header  |  1997-10-20  |  462b  |  25 lines

  1. // Fig. 7.8: fig07_08.cpp
  2. // Cascading member function calls together
  3. // with the this pointer
  4. #include <iostream.h>
  5. #include "time6.h"
  6.  
  7. int main()
  8. {
  9.    Time t;
  10.  
  11.    t.setHour( 18 ).setMinute( 30 ).setSecond( 22 );
  12.    cout << "Military time: ";
  13.    t.printMilitary();
  14.    cout << "\nStandard time: ";
  15.    t.printStandard();
  16.  
  17.    cout << "\n\nNew standard time: ";
  18.    t.setTime( 20, 20, 20 ).printStandard();
  19.    cout << endl;
  20.  
  21.    return 0;
  22. }
  23.  
  24.  
  25.